/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      Cp;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 -3 0 0 1 0 0];

internalField   uniform 15977.4;

boundaryField
{
    empty
    {
        type            empty;
    }

    centrep
    {
      type               zeroGradient;
    }

    surfacep
    {
      type               fixedGradient;
      gradient           62112923.55;   //-(-I)/(1*F*(3/Rp)*solidfracp*Lp*Dp)
    }
    surfacen
    {
      type            fixedValue;
      value           $internalField;
    }

    centren
    {
      type            fixedValue;
      value           $internalField;
    }

}

// ************************************************************************* //
